home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo This example makes a list of all .EXE files, puts them in a file called "TOZIP",
- echo which could then be used with PKZIP to make an archive of these EXE files.
- echo.
- echo for example: PKZIP EXEFILES @TOZIP
- echo.
- echo where "TOZIP" is created by FFG.
- echo.
- call presskey
- echo on
- ffg *:*exe /fp > tozip
- echo off
- echo.
- echo Since this is a demonstration, TOZIP, will now be deleted...
- del tozip
-
-